home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_door / ts_se02b.zip / README < prev    next >
Text File  |  1996-02-04  |  6KB  |  164 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.             ╔═╦═╗ ╦══╗ ╦═   ╦══╗ ╔══╗ ╦  ╦ ╔══╗ ╦══╗ ╦══╗ ╦══╗
  8.               ║   ║    ║    ║    ║    ║  ║ ║  ║ ║  ║ ║  ║ ║   
  9.               ║   ╠═   ║    ╠═   ╚══╗ ╠══╣ ║  ║ ╠══╝ ╠══╝ ╠═  
  10.               ║   ║    ║    ║       ║ ║  ║ ║  ║ ║    ║    ║   
  11.               ╩   ╩══╝ ╩══╝ ╩══╝ ╚══╝ ╩  ╩ ╚══╝ ╩    ╩    ╩══╝(TM)
  12.  
  13.  
  14.  
  15.           Included in this package is 2TSHOP, A program to convert
  16.             your Merisel or Ingram Micro Database to TeleShoppe!
  17.  
  18.  
  19.  
  20.          Copyright (c) 1991-96 Compudoc Consulting, All Rights Reserved
  21.  
  22.  
  23.  
  24.  
  25.    UP AND RUNNING:
  26.  
  27.    Since most of you would like to get up and running in the shortest 
  28.    amount of time possible...following the next set of instructions
  29.    will have you testing in about 10-15 minutes (Your time will vary
  30.    based on your experience.)
  31.  
  32.    INSTALL
  33.    
  34.    TeleShoppe provides its own INSTALL program. This will make your 
  35.    installation almost totally automatic. To install unzip your 
  36.    TSHOPSE01.zip file into a temporary directory. Then Type Install. 
  37.    You are asked for the directory name that you want to place your
  38.    your TeleShoppe files. Enter the name and press enter. If the 
  39.    directory does not exist Install will create it for you and commence
  40.    installing the appropriate files in their respective directories.
  41.  
  42.    CONSTRUCTING A BATCH FILE
  43.  
  44.    To run TeleShoppe from most Bulletin Boards, you will need to construct 
  45.    a Batch file that your Bulletin Board Software will use to call the 
  46.    TeleShoppe program. If you are running multi-nodes (and have the multi-
  47.    node version of TeleShoppe) you will want to make use of environment 
  48.    variables provided by your software. 
  49.    CONSTRUCTING A BATCH FILE (continued...)
  50.    
  51.    By creating this batch file, you are configuring it so TeleShoppe will 
  52.    run for that node. Each Batch file you create should be similar to the 
  53.    following example. (We are assuming you are configuring for a single 
  54.    node.)
  55.  
  56.       A sample TSHOP file can be found in your TeleShoppe Directory.
  57.                     
  58.       ---------------------------------------------------------
  59.       Single Node
  60.  
  61.       Name of batch file: TSHOP
  62.  
  63.       Line 1 @ECHO OFF 
  64.       Line 2 CD C:\PCB\DOORS\TSHOP 
  65.       Line 3 TSHOP.EXE C:\PCB\PCBOARD.SYS 
  66.       Line 4 CD C:\PCB 
  67.       Line 5 BOARD
  68.  
  69.       ---------------------------------------------------------
  70.  
  71.  
  72.  
  73.    CONSTRUCTING A BATCH FILE (continued...)
  74.  
  75.       ---------------------------------------------------------
  76.       Multi-Node
  77.            
  78.       Name of batch file: TSHOP
  79.  
  80.       Line 1 @ECHO OFF 
  81.       Line 2 CD C:\PCB\DOORS\TSHOP 
  82.       Line 3 TSHOP.EXE %PCBDRIVE%%PCBDIR%\PCBOARD.SYS
  83.       Line 4 CD %PCBDIR% 
  84.       Line 5 Board (BBS COMMAND)
  85.  
  86.       ---------------------------------------------------------
  87.       Other BBS Version (Other than PCBoard)
  88.  
  89.       Line 1 @ECHO OFF 
  90.       Line 2 CD C:\BBS\DOORS\TSHOP
  91.       Line 3 TSHOP.EXE DOOR.SYS 
  92.       Line 4 CD C:\BBS 
  93.       Line 5 BBS COMMAND
  94.  
  95.  
  96.       
  97.    CONSTRUCTING A BATCH FILE (continued...)
  98.    
  99.  
  100.    NOTE: For Non-PCBoard systems that are running nodes, you can set 
  101.          environment variables that will allow you to take advantage 
  102.          of the above situations.
  103.   
  104.          In your system's BOARD BATCH file, define your drive and 
  105.          directory of your DOOR.SYS files. For example:
  106.  
  107.             SET BBSDRIVE=C:
  108.             SET BBSDIR=\WILDCAT
  109.  
  110.          To use the above variables, you would use the DOS %variables
  111.          in your Batch file as:
  112.  
  113.          Line 3 TSHOP.EXE %BBSDRIVE%%BBSDIR%\DOOR.SYS
  114.  
  115.          This will allow TeleShoppe to determine exactly where the 
  116.          NODES files are located. To return to the home directory,
  117.          you would add the following lines to the Batch file:
  118.  
  119.  
  120.  
  121.    CONSTRUCTING A BATCH FILE (continued...)
  122.    
  123.             %BBSDRIVE%         //Change back to the original drive
  124.             CD %BBSDIR%        //Change to the original directory
  125.             <Board.bat>        //Call the board again
  126.  
  127.       Meanings:
  128.  
  129.       Line 1 Turns off the local screen echo (Dos 3.3 and above)
  130.       Line 2 Changes to the directory where TeleShoppe is stored.  
  131.       Line 3  (1) TeleShoppe executable statement 
  132.               (2) The complete path to that nodes PCBoard.sys, DOOR.SYS etc..  
  133.       Line 4 Changes back to the Bulletin Board's main directory.
  134.              (Where the BBS is run from)
  135.       Line 5 The BBS Command (Board in the case of PCBoard)
  136.  
  137.       NOTE: Your TeleShoppe batch file should be similar to the
  138.             examples above. Line 3, however, must contain the path to 
  139.             the PCBOARD.SYS or DOOR.SYS-type file.
  140.  
  141.       THIS FILE IS TO BE PLACED IN YOUR PCBOARD OR BBS DIRECTORY
  142.  
  143.  
  144.  
  145.    ADDING TO YOUR BBS DOORS FILE
  146.       
  147.    The next step for setting up TeleShoppe is to add it to your Bulletin 
  148.    Board's Doors file. If you use PCBoard, this is performed through the 
  149.    PCBoard SETUP program. In the PCBSETUP Editor for Doors, place the 
  150.    name of the Batch file you just created above in a slot for a door, 
  151.    give it a minimum security level, and you're finished. If you prefer 
  152.    to use the DOOR.SYS information, make sure you select to create a 
  153.    DOOR.SYS file. You should select NO SHELL in the PCBoard setup. You 
  154.    may use either DOOR.SYS, PCBOARD.SYS or other popular door dropfiles. 
  155.    (NOT RBBS, SORRY)
  156.  
  157.  
  158.    This completes the basic setup of TeleShoppe. Please read the TSHOP.DOC 
  159.    file. You MUST run the TCONFIG file to first create your database.
  160.  
  161.    Thanks for trying TeleShoppe!
  162.  
  163.    Registration information can be found in REGISTER.DOC
  164.